home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OpenGL Superbible (2nd Edition)
/
OpenGL SuperBible e2.iso
/
tools
/
GLUT-3.7
/
PROGS
/
mesademos
/
IMAGE.H
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1998-08-12
|
268 b
|
21 lines
/* Lifted from include/gltk.h */
#ifdef __cplusplus
extern "C" {
#endif
/*
** RGB Image Structure
*/
typedef struct _RGBImageRec {
int sizeX, sizeY;
unsigned char *data;
} RGBImageRec;
extern RGBImageRec *RGBImageLoad(char *);
#ifdef __cplusplus
}
#endif